home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP03 / SYSMETS1.C < prev    next >
C/C++ Source or Header  |  1995-12-31  |  4KB  |  107 lines

  1. /*----------------------------------------------------
  2.    SYSMETS1.C -- System Metrics Display Program No. 1
  3.                  (c) Charles Petzold, 1996
  4.   ----------------------------------------------------*/
  5.  
  6. #include <windows.h>
  7. #include <string.h>
  8. #include "sysmets.h"
  9.  
  10. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  11.  
  12. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  13.                     PSTR szCmdLine, int iCmdShow)
  14.      {
  15.      static char szAppName[] = "SysMets1" ;
  16.      HWND        hwnd ;
  17.      MSG         msg ;
  18.      WNDCLASSEX  wndclass ;
  19.  
  20.      wndclass.cbSize        = sizeof (wndclass) ;
  21.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  22.      wndclass.lpfnWndProc   = WndProc ;
  23.      wndclass.cbClsExtra    = 0 ;
  24.      wndclass.cbWndExtra    = 0 ;
  25.      wndclass.hInstance     = hInstance ;
  26.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  27.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  28.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  29.      wndclass.lpszMenuName  = NULL ;
  30.      wndclass.lpszClassName = szAppName ;
  31.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  32.  
  33.      RegisterClassEx (&wndclass) ;
  34.  
  35.      hwnd = CreateWindow (szAppName, "Get System Metrics No. 1",
  36.                           WS_OVERLAPPEDWINDOW,
  37.                           CW_USEDEFAULT, CW_USEDEFAULT,
  38.                           CW_USEDEFAULT, CW_USEDEFAULT,
  39.                           NULL, NULL, hInstance, NULL) ;
  40.  
  41.      ShowWindow (hwnd, iCmdShow) ;
  42.      UpdateWindow (hwnd) ;
  43.  
  44.      while (GetMessage (&msg, NULL, 0, 0))
  45.           {
  46.           TranslateMessage (&msg) ;
  47.           DispatchMessage (&msg) ;
  48.           }
  49.      return msg.wParam ;
  50.      }
  51.  
  52. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  53.      {
  54.      static int  cxChar, cxCaps, cyChar ;
  55.      char        szBuffer[10] ;
  56.      HDC         hdc ;
  57.      int         i ;
  58.      PAINTSTRUCT ps ;
  59.      TEXTMETRIC  tm ;
  60.  
  61.      switch (iMsg)
  62.           {
  63.           case WM_CREATE :
  64.                hdc = GetDC (hwnd) ;
  65.  
  66.                GetTextMetrics (hdc, &tm) ;
  67.                cxChar = tm.tmAveCharWidth ;
  68.                cxCaps = (tm.tmPitchAndFamily & 1 ? 3 : 2) * cxChar / 2 ;
  69.                cyChar = tm.tmHeight + tm.tmExternalLeading ;
  70.  
  71.                ReleaseDC (hwnd, hdc) ;
  72.                return 0 ;
  73.  
  74.           case WM_PAINT :
  75.                hdc = BeginPaint (hwnd, &ps) ;
  76.  
  77.                for (i = 0 ; i < NUMLINES ; i++)
  78.                     {
  79.                     TextOut (hdc, cxChar, cyChar * (1 + i),
  80.                              sysmetrics[i].szLabel,
  81.                              strlen (sysmetrics[i].szLabel)) ;
  82.  
  83.                     TextOut (hdc, cxChar + 22 * cxCaps, cyChar * (1 + i),
  84.                              sysmetrics[i].szDesc,
  85.                              strlen (sysmetrics[i].szDesc)) ;
  86.  
  87.                     SetTextAlign (hdc, TA_RIGHT | TA_TOP) ;
  88.  
  89.                     TextOut (hdc, cxChar + 22 * cxCaps + 40 * cxChar,
  90.                              cyChar * (1 + i), szBuffer,
  91.                              wsprintf (szBuffer, "%5d",
  92.                              GetSystemMetrics (sysmetrics[i].iIndex))) ;
  93.  
  94.                     SetTextAlign (hdc, TA_LEFT | TA_TOP) ;
  95.                     }
  96.  
  97.                EndPaint (hwnd, &ps) ;
  98.                return 0 ;
  99.  
  100.           case WM_DESTROY :
  101.                PostQuitMessage (0) ;
  102.                return 0 ;
  103.           }
  104.  
  105.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  106.      }
  107.